home *** CD-ROM | disk | FTP | other *** search
/ Internet Info 1994 March / Internet Info CD-ROM (Walnut Creek) (March 1994).iso / networking / ip / ka9q / src.arc / TELNET.H < prev    next >
C/C++ Source or Header  |  1989-08-18  |  985b  |  37 lines

  1. #ifndef    IAC
  2.  
  3. #define    LINESIZE    256    /* Length of local editing buffer */
  4.  
  5. /* Telnet command characters */
  6. #define    IAC        255    /* Interpret as command */
  7. #define    WILL        251
  8. #define    WONT        252
  9. #define    DO        253
  10. #define    DONT        254
  11.  
  12. /* Telnet options */
  13. #define    TN_TRANSMIT_BINARY    0
  14. #define    TN_ECHO            1
  15. #define    TN_SUPPRESS_GA        3
  16. #define    TN_STATUS        5
  17. #define    TN_TIMING_MARK        6
  18. #define    NOPTIONS        6
  19.  
  20. /* Telnet protocol control block */
  21. struct telnet {
  22.     char local[NOPTIONS];    /* Local option settings */
  23.     char remote[NOPTIONS];    /* Remote option settings */
  24.  
  25.     struct session *session;    /* Pointer to session structure */
  26.     struct proc *input;        /* net -> console */
  27.     struct proc *output;        /* console -> net */
  28.     struct proc *upload;        /* Upload process, if any */
  29. };
  30. #define    NULLTN    (struct telnet *)0
  31. extern int Refuse_echo;
  32. /* In telnet.c: */
  33. void tel_input __ARGS((int unused,void *tn1,void *p));
  34. void tel_upload __ARGS((int unused,void *sp1,void *p));
  35.  
  36. #endif    /* IAC */
  37.